home *** CD-ROM | disk | FTP | other *** search
/ Building Homes of Our Own / Building Homes of our Own.iso / setup / data1.cab / Everything / working / siteSel.dxr / exitFrameScripts_23_initIsoEngine frameScript.ls < prev    next >
Encoding:
Text File  |  2002-09-25  |  559 b   |  20 lines

  1. on exitFrame me
  2.   global gUserDataMan, gIsoEngineTracker, gSporadicSoundMan, gIso
  3.   placeToGoTo = getSavePlace(gUserDataMan)
  4.   init(gIsoEngineTracker)
  5.   gSporadicSoundMan = new(script("sporadicSoundManager"))
  6.   theFrameLabel = placeToGoTo[#frameLabel]
  7.   if theFrameLabel starts "FP" then
  8.     initIsoEngine_footprintPlacement()
  9.   else
  10.     if theFrameLabel starts "SP" then
  11.       initIsoEngine_sitePrep()
  12.     else
  13.       myAlert("cannot recognize <placeToGoTo>: " && placeToGoTo)
  14.       halt()
  15.     end if
  16.   end if
  17.   put enginestatus(gIso)
  18.   go(theFrameLabel)
  19. end
  20.